home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Games Collection 1
/
software vault.zip
/
software vault
/
CDR03
/
SANG0.ZIP
/
GO.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-09-23
|
744b
|
41 lines
@ECHO OFF
goto check
:check
IF EXIST ASK.COM GOTO RUN
CLS
ECHO.
ECHO.
ECHO FILE MISSING "ASK.COM" CONTACT SHAREWARE DISTRIBUTOR
goto exit
:run
IF EXIST INSTALL.EXE GOTO INSTALL
IF EXIST INSTALL.COM GOTO INSTALL
IF EXIST INSTALL.BAT GOTO INSTALL
GOTO WRONGDISK
:INSTALL
CLS
echo.
ask Requires installation to hard drive. Do you wish to install? (Y/N)
if errorlevel 1 goto end
install
echo.
echo.
echo.
echo.
goto exit
:wrongdisk
echo.
echo.
echo I'm sorry but to use this program you must use "DISK #1"
echo.
echo.
goto exit
:end
echo.
echo.
echo.
echo.
echo This program will only run on a hard drive due to the size of program.
echo This program must be install with this batch file. Thank You
:exit